home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2005 Utilities / CHIP Utilities 2005.7z / CHIP Utilities 2005.iso / docs / freedos / download.mcafee.com / common / javascript / openNoScrollWindow.js
Encoding:
Text File  |  2002-12-16  |  454 b   |  10 lines

  1. function openNoScrollWindow(url,title,width,height)
  2. {
  3.     // read resolution and set variables
  4.     var      x = screen.width;
  5.     var      y = screen.height;
  6.     var    top = parseInt((y-height)/2);
  7.     var   left = parseInt((x-width)/2);
  8.     // open new window and use the variables to position it
  9.     window.open(url,title,'width='+width+',height='+height+',left='+left+',top='+top+',scrollbars=no,resize=yes,resizable=yes,menubar=no,toolbar=no,directories=no');
  10. }